projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7906c04
)
(back-to-indentation): Skip all whitespace except for newlines.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 4 Feb 2003 10:41:10 +0000
(10:41 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 4 Feb 2003 10:41:10 +0000
(10:41 +0000)
lisp/simple.el
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index ac531e9674cb177112a79c1155d59eeb58d4a745..27f301b4261d4db527bbe36ac4f0a0b16f08b088 100644
(file)
--- a/
lisp/simple.el
+++ b/
lisp/simple.el
@@
-368,7
+368,8
@@
useful for editing binary files."
"Move point to the first non-whitespace character on this line."
(interactive)
(beginning-of-line 1)
- (skip-chars-forward " \t"))
+ (let ((limit (line-end-position)))
+ (skip-syntax-forward " " limit)))
(defun fixup-whitespace ()
"Fixup white space between objects around point.